setEnterTransition

open fun setEnterTransition(@Nullable transition: Any)(source)

Sets the Transition that will be used to move Views into the initial scene. The entering Views will be those that are regular Views or ViewGroups that have isTransitionGroup return true. Typical Transitions will extend android.transition.Visibility as entering is governed by changing visibility from INVISIBLE to VISIBLE. If transition is null, entering Views will remain unaffected.

Parameters

transition

The Transition to use to move Views into the initial Scene. transition must be an android.transition.Transition or androidx.transition.Transition.